using System;
using System.Threading;
namespace WebApplication13
{
public partial class WebForm1 : System.Web.UI.Page
{
protected void Button1_Click(object sender, EventArgs e)
{
Thread.Sleep(3000);
Label1.Text = "Process completed successfully!";
}
}
}